2025-07-28 10:07:37,039 [ 301837 ] INFO : ClickHouse root is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse (runner:53, check_args_and_update_paths) 2025-07-28 10:07:37,039 [ 301837 ] INFO : Cases dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:79, check_args_and_update_paths) 2025-07-28 10:07:37,039 [ 301837 ] INFO : utils dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/utils (runner:90, check_args_and_update_paths) 2025-07-28 10:07:37,040 [ 301837 ] INFO : base_configs_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/programs/server, binary: /home/ubuntu/_work/_temp/test/build/clickhouse, cases_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:92, check_args_and_update_paths) clickhouse_integration_tests_volume Running pytest container as: 'docker run --rm --name clickhouse_integration_tests_o6t4w3 --privileged --dns-search='.' --memory=30709030912 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e CLICKHOUSE_USE_OLD_ANALYZER=1 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel1_1.jsonl --report-log-exclude-logs-on-passed-tests test_git_import/test.py::test_git_import -vvv " altinityinfra/integration-tests-runner:226bfaf75ac1 '. Start tests ============================= test session starts ============================== platform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.5.0 -- /usr/bin/python3 cachedir: .pytest_cache Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket= rootdir: /ClickHouse/tests/integration configfile: pytest.ini plugins: timeout-2.3.1, repeat-0.9.3, order-1.0.0, reportlog-0.4.0, xdist-3.5.0, random-order-1.1.1 timeout: 900.0s timeout method: signal timeout func_only: False created: 10/10 workers 10 workers [1 item] scheduling tests via LoadFileScheduling test_git_import/test.py::test_git_import [gw0] [100%] FAILED test_git_import/test.py::test_git_import =================================== FAILURES =================================== _______________________________ test_git_import ________________________________ [gw0] linux -- Python 3.10.12 /usr/bin/python3 def test_git_import(): repo = "https://github.com/githubtraining/hellogitworld.git" commit = "ef7bebf8bdb1919d947afe46ab4b2fb4278039b3" dir = "/tmp/hellogitworld" > clone_git_repository(repo, dir, commit=commit) test_git_import/test.py:173: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test_git_import/test.py:32: in clone_git_repository node.exec_in_container(["bash", "-c", command]) helpers/cluster.py:4117: in exec_in_container return self.cluster.exec_in_container( helpers/cluster.py:2069: in exec_in_container result = subprocess_check_call( helpers/cluster.py:239: in subprocess_check_call return run_and_check(args, detach=detach, nothrow=nothrow, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ['docker', 'exec', 'roottestgitimport-gw0-node-1', 'bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworl.../githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] env = None, shell = False, stdout = -1, stderr = -1, timeout = 300 nothrow = False, detach = False def run_and_check( args: Union[Sequence[str], str], env=None, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE, timeout=300, nothrow=False, detach=False, ) -> str: if shell: if isinstance(args, str): shell_args = args else: shell_args = next(a for a in args) else: shell_args = " ".join(args) logging.debug("Command:[%s]", shell_args) if detach: subprocess.Popen( args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, env=env, shell=shell, ) return "" res = subprocess.run( args, stdout=stdout, stderr=stderr, env=env, shell=shell, timeout=timeout, check=False, ) out = res.stdout.decode("utf-8", "ignore") err = res.stderr.decode("utf-8", "ignore") # check_call(...) from subprocess does not print stderr, so we do it manually for outline in out.splitlines(): logging.debug("Stdout:%s", outline) for errline in err.splitlines(): logging.debug("Stderr:%s", errline) if res.returncode != 0: logging.debug("Exitcode:%s", res.returncode) if env: logging.debug("Env:%s", env) if not nothrow: > raise Exception( f"Command [{shell_args}] return non-zero code {res.returncode}: {res.stderr.decode('utf-8')}" ) E Exception: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com helpers/cluster.py:153: Exception ---------------------------- Captured stdout setup ----------------------------- Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml ------------------------------ Captured log setup ------------------------------ 2025-07-28 10:07:43.319000 [ 641 ] DEBUG : Command:[docker ps | wc -l] (cluster.py:121, run_and_check) 2025-07-28 10:07:43.347000 [ 641 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-28 10:07:43.348000 [ 641 ] DEBUG : No running containers (conftest.py:95, cleanup_environment) 2025-07-28 10:07:43.348000 [ 641 ] DEBUG : Pruning Docker networks (conftest.py:97, cleanup_environment) 2025-07-28 10:07:43.348000 [ 641 ] DEBUG : Command:[docker network prune --force] (cluster.py:121, run_and_check) 2025-07-28 10:07:43.371000 [ 641 ] DEBUG : Command:[sysctl net.ipv4.ip_local_port_range='55000 65535'] (cluster.py:121, run_and_check) 2025-07-28 10:07:43.373000 [ 641 ] DEBUG : Stdout:net.ipv4.ip_local_port_range = 55000 65535 (cluster.py:145, run_and_check) 2025-07-28 10:07:43.374000 [ 641 ] INFO : Running tests in /ClickHouse/tests/integration/test_git_import/test.py (cluster.py:2738, start) 2025-07-28 10:07:43.375000 [ 641 ] DEBUG : Cluster start called. is_up=False (cluster.py:2745, start) 2025-07-28 10:07:43.396000 [ 641 ] DEBUG : Docker networks for project roottestgitimport-gw0 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2025-07-28 10:07:43.416000 [ 641 ] DEBUG : Docker containers for project roottestgitimport-gw0 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2025-07-28 10:07:43.444000 [ 641 ] DEBUG : Docker volumes for project roottestgitimport-gw0 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2025-07-28 10:07:43.445000 [ 641 ] DEBUG : Cleanup called (cluster.py:851, cleanup) 2025-07-28 10:07:43.474000 [ 641 ] DEBUG : Docker networks for project roottestgitimport-gw0 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2025-07-28 10:07:43.499000 [ 641 ] DEBUG : Docker containers for project roottestgitimport-gw0 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2025-07-28 10:07:43.519000 [ 641 ] DEBUG : Docker volumes for project roottestgitimport-gw0 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2025-07-28 10:07:43.519000 [ 641 ] DEBUG : Command:[docker container list --all --filter name='^/roottestgitimport-gw0-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2025-07-28 10:07:43.546000 [ 641 ] DEBUG : Unstopped containers: {} (cluster.py:865, cleanup) 2025-07-28 10:07:43.547000 [ 641 ] DEBUG : No running containers for project: roottestgitimport-gw0 (cluster.py:879, cleanup) 2025-07-28 10:07:43.547000 [ 641 ] DEBUG : Trying to prune unused networks... (cluster.py:885, cleanup) 2025-07-28 10:07:43.577000 [ 641 ] DEBUG : Trying to prune unused images... (cluster.py:901, cleanup) 2025-07-28 10:07:43.577000 [ 641 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2025-07-28 10:07:43.612000 [ 641 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2025-07-28 10:07:43.612000 [ 641 ] DEBUG : Images pruned (cluster.py:904, cleanup) 2025-07-28 10:07:43.612000 [ 641 ] DEBUG : Trying to prune unused volumes... (cluster.py:910, cleanup) 2025-07-28 10:07:43.612000 [ 641 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2025-07-28 10:07:43.639000 [ 641 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-28 10:07:43.639000 [ 641 ] DEBUG : Volumes pruned: 1 (cluster.py:915, cleanup) 2025-07-28 10:07:43.640000 [ 641 ] DEBUG : Setup directory for instance: node (cluster.py:2758, start) 2025-07-28 10:07:43.641000 [ 641 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4628, create_dir) 2025-07-28 10:07:43.641000 [ 641 ] DEBUG : Create directory for common tests configuration (cluster.py:4633, create_dir) 2025-07-28 10:07:43.642000 [ 641 ] DEBUG : Copy common configuration from helpers (cluster.py:4653, create_dir) 2025-07-28 10:07:43.643000 [ 641 ] DEBUG : Generate and write macros file (cluster.py:4705, create_dir) 2025-07-28 10:07:43.644000 [ 641 ] DEBUG : Copy custom test config files [] to /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/configs/config.d (cluster.py:4741, create_dir) 2025-07-28 10:07:43.644000 [ 641 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/database (cluster.py:4758, create_dir) 2025-07-28 10:07:43.644000 [ 641 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/logs (cluster.py:4769, create_dir) 2025-07-28 10:07:43.645000 [ 641 ] DEBUG : Entrypoint cmd: ["clickhouse", "server", "--config-file=/etc/clickhouse-server/config.xml", "--log-file=/var/log/clickhouse-server/clickhouse-server.log", "--errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log", "--"] (cluster.py:4850, create_dir) 2025-07-28 10:07:43.645000 [ 641 ] DEBUG : Env {'ASAN_OPTIONS': 'use_sigaltstack=0', 'TSAN_OPTIONS': 'use_sigaltstack=0', 'CLICKHOUSE_WATCHDOG_ENABLE': '0', 'CLICKHOUSE_NATS_TLS_SECURE': '0', 'LLVM_PROFILE_FILE': '/var/lib/clickhouse/server_%h_%p_%m.profraw'} stored in /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/.env (cluster.py:96, _create_env_file) 2025-07-28 10:07:43.646000 [ 641 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-07-28 10:07:43.646000 [ 641 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-07-28 10:07:43.646000 [ 641 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-07-28 10:07:43.647000 [ 641 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-07-28 10:07:43.659000 [ 641 ] DEBUG : http://localhost:None "GET /version HTTP/1.1" 200 826 (connectionpool.py:547, _make_request) 2025-07-28 10:07:43.660000 [ 641 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/.env --project-name roottestgitimport-gw0 --file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/docker-compose.yml pull] (cluster.py:121, run_and_check) 2025-07-28 10:07:54.095000 [ 641 ] DEBUG : Stderr: node Pulling (cluster.py:147, run_and_check) 2025-07-28 10:07:54.095000 [ 641 ] DEBUG : Stderr: node Pulled (cluster.py:147, run_and_check) 2025-07-28 10:07:54.095000 [ 641 ] DEBUG : ('Trying to create ClickHouse instance by command %s', 'docker compose --env-file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/.env --project-name roottestgitimport-gw0 --file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/docker-compose.yml up -d --no-recreate') (cluster.py:3139, start) 2025-07-28 10:07:54.095000 [ 641 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/.env --project-name roottestgitimport-gw0 --file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/docker-compose.yml up -d --no-recreate] (cluster.py:121, run_and_check) 2025-07-28 10:07:54.631000 [ 641 ] DEBUG : Stderr: Network roottestgitimport-gw0_default Creating (cluster.py:147, run_and_check) 2025-07-28 10:07:54.631000 [ 641 ] DEBUG : Stderr: Network roottestgitimport-gw0_default Created (cluster.py:147, run_and_check) 2025-07-28 10:07:54.631000 [ 641 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Creating (cluster.py:147, run_and_check) 2025-07-28 10:07:54.631000 [ 641 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Created (cluster.py:147, run_and_check) 2025-07-28 10:07:54.631000 [ 641 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Starting (cluster.py:147, run_and_check) 2025-07-28 10:07:54.631000 [ 641 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Started (cluster.py:147, run_and_check) 2025-07-28 10:07:54.632000 [ 641 ] DEBUG : ClickHouse instance created (cluster.py:3147, start) 2025-07-28 10:07:54.632000 [ 641 ] DEBUG : get_instance_ip instance_name=node (cluster.py:2005, get_instance_ip) 2025-07-28 10:07:54.633000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestgitimport-gw0-node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:54.634000 [ 641 ] DEBUG : get_instance_ip instance_name=node (cluster.py:2015, get_instance_global_ipv6) 2025-07-28 10:07:54.635000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestgitimport-gw0-node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:54.635000 [ 641 ] DEBUG : Waiting for ClickHouse start in node, ip: 172.16.1.2... (cluster.py:3155, start) 2025-07-28 10:07:54.637000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestgitimport-gw0-node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:54.639000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/e3c9d1f54e01ccd66d52112e1f39c54be3b1063b7221c0fe534a141910b5b21a/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:54.741000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/e3c9d1f54e01ccd66d52112e1f39c54be3b1063b7221c0fe534a141910b5b21a/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:54.845000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/e3c9d1f54e01ccd66d52112e1f39c54be3b1063b7221c0fe534a141910b5b21a/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:54.948000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/e3c9d1f54e01ccd66d52112e1f39c54be3b1063b7221c0fe534a141910b5b21a/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:55.051000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/e3c9d1f54e01ccd66d52112e1f39c54be3b1063b7221c0fe534a141910b5b21a/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:55.154000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/e3c9d1f54e01ccd66d52112e1f39c54be3b1063b7221c0fe534a141910b5b21a/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:55.257000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/e3c9d1f54e01ccd66d52112e1f39c54be3b1063b7221c0fe534a141910b5b21a/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:55.361000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/e3c9d1f54e01ccd66d52112e1f39c54be3b1063b7221c0fe534a141910b5b21a/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:55.464000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/e3c9d1f54e01ccd66d52112e1f39c54be3b1063b7221c0fe534a141910b5b21a/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:55.567000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/e3c9d1f54e01ccd66d52112e1f39c54be3b1063b7221c0fe534a141910b5b21a/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:55.671000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/e3c9d1f54e01ccd66d52112e1f39c54be3b1063b7221c0fe534a141910b5b21a/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:55.774000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/e3c9d1f54e01ccd66d52112e1f39c54be3b1063b7221c0fe534a141910b5b21a/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:55.877000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/e3c9d1f54e01ccd66d52112e1f39c54be3b1063b7221c0fe534a141910b5b21a/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:55.980000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/e3c9d1f54e01ccd66d52112e1f39c54be3b1063b7221c0fe534a141910b5b21a/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:56.084000 [ 641 ] DEBUG : http://localhost:None "GET /v1.46/containers/e3c9d1f54e01ccd66d52112e1f39c54be3b1063b7221c0fe534a141910b5b21a/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:07:56.084000 [ 641 ] DEBUG : ClickHouse node started (cluster.py:3159, start) ------------------------------ Captured log call ------------------------------- 2025-07-28 10:07:56.087000 [ 641 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:07:56.087000 [ 641 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:07:58.159000 [ 641 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:07:58.159000 [ 641 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:07:58.160000 [ 641 ] WARNING : Attempt #1 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:07:59.161000 [ 641 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:07:59.161000 [ 641 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:08:01.235000 [ 641 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:08:01.235000 [ 641 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:08:01.235000 [ 641 ] WARNING : Attempt #2 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:08:02.236000 [ 641 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:08:02.236000 [ 641 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:08:04.307000 [ 641 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:08:04.308000 [ 641 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:08:04.308000 [ 641 ] WARNING : Attempt #3 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:08:05.309000 [ 641 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:08:05.309000 [ 641 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:08:07.390000 [ 641 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:08:07.390000 [ 641 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:08:07.390000 [ 641 ] WARNING : Attempt #4 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:08:08.392000 [ 641 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:08:08.392000 [ 641 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:08:10.467000 [ 641 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:08:10.467000 [ 641 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:08:10.467000 [ 641 ] WARNING : Attempt #5 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:08:11.469000 [ 641 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:08:11.469000 [ 641 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:08:13.546000 [ 641 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:08:13.546000 [ 641 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:08:13.547000 [ 641 ] WARNING : Attempt #6 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:08:14.548000 [ 641 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:08:14.548000 [ 641 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:08:16.613000 [ 641 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:08:16.613000 [ 641 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:08:16.613000 [ 641 ] WARNING : Attempt #7 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:08:17.614000 [ 641 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:08:17.615000 [ 641 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:08:19.679000 [ 641 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:08:19.679000 [ 641 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:08:19.679000 [ 641 ] WARNING : Attempt #8 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:08:20.680000 [ 641 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:08:20.680000 [ 641 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:08:22.750000 [ 641 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:08:22.750000 [ 641 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:08:22.750000 [ 641 ] WARNING : Attempt #9 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:08:23.751000 [ 641 ] DEBUG : run container_id:roottestgitimport-gw0-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:08:23.751000 [ 641 ] DEBUG : Command:[docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:08:25.817000 [ 641 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:08:25.817000 [ 641 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:08:25.817000 [ 641 ] WARNING : Attempt #10 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw0-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will stop (test.py:36, clone_git_repository) ---------------------------- Captured log teardown ----------------------------- 2025-07-28 10:08:26.046000 [ 641 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/.env --project-name roottestgitimport-gw0 --file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/docker-compose.yml stop --timeout 20] (cluster.py:121, run_and_check) 2025-07-28 10:08:32.835000 [ 641 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 10:08:32.835000 [ 641 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 10:08:32.836000 [ 641 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-28 10:08:32.848000 [ 641 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/.env --project-name roottestgitimport-gw0 --file /ClickHouse/tests/integration/test_git_import/_instances-1-gw0/node/docker-compose.yml down --volumes] (cluster.py:121, run_and_check) 2025-07-28 10:08:33.235000 [ 641 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 10:08:33.235000 [ 641 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 10:08:33.236000 [ 641 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Removing (cluster.py:147, run_and_check) 2025-07-28 10:08:33.236000 [ 641 ] DEBUG : Stderr: Container roottestgitimport-gw0-node-1 Removed (cluster.py:147, run_and_check) 2025-07-28 10:08:33.236000 [ 641 ] DEBUG : Stderr: Network roottestgitimport-gw0_default Removing (cluster.py:147, run_and_check) 2025-07-28 10:08:33.236000 [ 641 ] DEBUG : Stderr: Network roottestgitimport-gw0_default Removed (cluster.py:147, run_and_check) 2025-07-28 10:08:33.236000 [ 641 ] DEBUG : Cleanup called (cluster.py:851, cleanup) 2025-07-28 10:08:33.253000 [ 641 ] DEBUG : Docker networks for project roottestgitimport-gw0 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2025-07-28 10:08:33.276000 [ 641 ] DEBUG : Docker containers for project roottestgitimport-gw0 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2025-07-28 10:08:33.293000 [ 641 ] DEBUG : Docker volumes for project roottestgitimport-gw0 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2025-07-28 10:08:33.294000 [ 641 ] DEBUG : Command:[docker container list --all --filter name='^/roottestgitimport-gw0-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2025-07-28 10:08:33.309000 [ 641 ] DEBUG : Unstopped containers: {} (cluster.py:865, cleanup) 2025-07-28 10:08:33.309000 [ 641 ] DEBUG : No running containers for project: roottestgitimport-gw0 (cluster.py:879, cleanup) 2025-07-28 10:08:33.309000 [ 641 ] DEBUG : Trying to prune unused networks... (cluster.py:885, cleanup) 2025-07-28 10:08:33.326000 [ 641 ] DEBUG : Trying to prune unused images... (cluster.py:901, cleanup) 2025-07-28 10:08:33.326000 [ 641 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2025-07-28 10:08:33.349000 [ 641 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2025-07-28 10:08:33.349000 [ 641 ] DEBUG : Images pruned (cluster.py:904, cleanup) 2025-07-28 10:08:33.349000 [ 641 ] DEBUG : Trying to prune unused volumes... (cluster.py:910, cleanup) 2025-07-28 10:08:33.349000 [ 641 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2025-07-28 10:08:33.367000 [ 641 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-28 10:08:33.367000 [ 641 ] DEBUG : Volumes pruned: 1 (cluster.py:915, cleanup) ----------------- generated report log file: parallel1_1.jsonl ----------------- ============================== slowest durations =============================== 29.73s call test_git_import/test.py::test_git_import 12.77s setup test_git_import/test.py::test_git_import 7.32s teardown test_git_import/test.py::test_git_import =========================== short test summary info ============================ FAILED test_git_import/test.py::test_git_import - Exception: Command [docker ... ============================== 1 failed in 52.16s ============================== Traceback (most recent call last): File "/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration/./runner", line 492, in subprocess.check_call(cmd, shell=True, bufsize=0) File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'docker run --rm --name clickhouse_integration_tests_o6t4w3 --privileged --dns-search='.' --memory=30709030912 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e CLICKHOUSE_USE_OLD_ANALYZER=1 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel1_1.jsonl --report-log-exclude-logs-on-passed-tests test_git_import/test.py::test_git_import -vvv " altinityinfra/integration-tests-runner:226bfaf75ac1 ' returned non-zero exit status 1.